home *** CD-ROM | disk | FTP | other *** search
/ Almathera Ten Pack 1: Comms & Networking / Almathera Ten on Ten - Disc 1: Comms & Networking.iso / installextras / install things < prev    next >
Text File  |  1995-05-11  |  1KB  |  72 lines

  1.  
  2.  
  3. ; Authored & Hack To Smeggeroonie by THP / Citrus Inc.
  4.  
  5. ;                                   <A subdivsion of Almathera Systems Ltd>
  6.  
  7.  
  8.       ; drugs/alcohol/pain/adrenalin. there must be other ways outta here.
  9.  
  10.  
  11. ; /******************************************************************************/
  12.  
  13.                                    ; Uh?
  14.  
  15. (set #copying-arplib "Copying ARP.library to LIBS:")
  16. (set #copying-amigaguidelib "Copying AmigaGuide.library to LIBS:")
  17. (set #copying-amigaguide  "Copying AmigaGuide to sys:Utilities/")
  18. (set #copying-amigaguidehelp "Copying Help.Guide to s:")
  19. (set #copying-installer "Copying Installer to c:")
  20.  
  21. ; /******************************************************************************/
  22.  
  23.                     ; Enough kacking around, let's GO!
  24.  
  25. (copylib
  26.     (prompt "\n" #copying-arplib)
  27.     (help @copylib-help)
  28.     (source "libs/arp.library")
  29.     (dest "libs:")
  30.     (confirm)
  31. )
  32.  
  33. (copylib
  34.     (prompt "\n" #copying-amigaguidelib)
  35.     (help @copylib-help)
  36.     (source "libs/amigaguide.library")
  37.     (dest "libs:")
  38.     (confirm)
  39. )
  40.  
  41.  
  42. (copylib
  43.     (prompt "\n" #copying-amigaguide)
  44.     (help @copylib-help)
  45.     (source "Utilities/Amigaguide")
  46.     (dest "sys:Utilities/")
  47.     (infos)
  48.     (confirm)
  49. )
  50.  
  51.  
  52. (copylib
  53.     (prompt "\n" #copying-amigaguidehelp)
  54.     (help @copylib-help)
  55.     (source "s/Help.Guide")
  56.     (dest "s:")
  57.     (infos)
  58.     (confirm)
  59. )
  60.  
  61. (copylib
  62.     (prompt "\n" #copying-installer)
  63.     (help @copylib-help)
  64.     (source "Installer")
  65.     (dest "c:")
  66.     (infos)
  67.     (confirm)
  68. )
  69.  
  70. (exit)
  71.  
  72.